Problem with setting a callback to DBE listView

I got this DXL from a Telelogic instructor a while ago, but the original version uses a multiList and I need to use a listView with listViewOptionMultiSelect so that I can select multiple items at once.

Anyway, I don't know what I am doing wrong. :(

I don't get any errors, but the lView won't populate.

Because the DBE attrList is all over the code, I set it equal to the DBE listView. That may be part of the problem.

Any help would be REALLY appreciated.
lnorton - Wed Mar 17 19:22:10 EDT 2010

Re: Problem with setting a callback to DBE listView
SystemAdmin - Thu Mar 18 00:07:16 EDT 2010

Hi
You have to insert at least a column in a list view to be able to see its content.
Use insertColumn statement:

insertColumn(lView, 0, "Column Title", 250, iconNone)


This statement must be after

realize mainDB


Regards
Mokhtar

Re: Problem with setting a callback to DBE listView
lnorton - Tue Mar 23 11:07:07 EDT 2010

SystemAdmin - Thu Mar 18 00:07:16 EDT 2010

Hi
You have to insert at least a column in a list view to be able to see its content.
Use insertColumn statement:

insertColumn(lView, 0, "Column Title", 250, iconNone)


This statement must be after

realize mainDB


Regards
Mokhtar

Thank you!